home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gsline.h < prev    next >
C/C++ Source or Header  |  1997-01-10  |  3KB  |  67 lines

  1. /* Copyright (C) 1994, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gsline.h */
  20. /* Line parameter and quality definitions */
  21.  
  22. #ifndef gsline_INCLUDED
  23. #  define gsline_INCLUDED
  24.  
  25. #include "gslparam.h"
  26.  
  27. /* Procedures */
  28. int    gs_setlinewidth(P2(gs_state *, floatp));
  29. float    gs_currentlinewidth(P1(const gs_state *));
  30. int    gs_setlinecap(P2(gs_state *, gs_line_cap));
  31. gs_line_cap
  32.     gs_currentlinecap(P1(const gs_state *));
  33. int    gs_setlinejoin(P2(gs_state *, gs_line_join));
  34. gs_line_join
  35.     gs_currentlinejoin(P1(const gs_state *));
  36. int    gs_setmiterlimit(P2(gs_state *, floatp));
  37. float    gs_currentmiterlimit(P1(const gs_state *));
  38. int    gs_setdash(P4(gs_state *, const float *, uint, floatp));
  39. uint    gs_currentdash_length(P1(const gs_state *));
  40. const float *
  41.     gs_currentdash_pattern(P1(const gs_state *));
  42. float    gs_currentdash_offset(P1(const gs_state *));
  43. int    gs_setflat(P2(gs_state *, floatp));
  44. float    gs_currentflat(P1(const gs_state *));
  45. int    gs_setstrokeadjust(P2(gs_state *, bool));
  46. bool    gs_currentstrokeadjust(P1(const gs_state *));
  47.  
  48. /* Extensions */
  49. void    gs_setaccuratecurves(P2(gs_state *, bool));
  50. bool    gs_currentaccuratecurves(P1(const gs_state *));
  51. void    gs_setdashadapt(P2(gs_state *, bool));
  52. bool    gs_currentdashadapt(P1(const gs_state *));
  53. int    gs_setdotlength(P3(gs_state *, floatp, bool));
  54. float    gs_currentdotlength(P1(const gs_state *));
  55. bool    gs_currentdotlength_absolute(P1(const gs_state *));
  56.  
  57. /* Imager-level procedures */
  58. #ifndef gs_imager_state_DEFINED
  59. #  define gs_imager_state_DEFINED
  60. typedef struct gs_imager_state_s gs_imager_state;
  61. #endif
  62. int    gs_imager_setflat(P2(gs_imager_state *, floatp));
  63. bool    gs_imager_currentdashadapt(P1(const gs_imager_state *));
  64. bool    gs_imager_currentaccuratecurves(P1(const gs_imager_state *));
  65.  
  66. #endif                    /* gsline_INCLUDED */
  67.